home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 20
/
Aminet 20 (1997)(GTI - Schatztruhe)[!][Aug 1997].iso
/
Aminet
/
dev
/
cross
/
AmigaTI85Prog.lha
/
MakeAsm
< prev
next >
Wrap
AmigaDOS Script File
|
1997-06-13
|
370b
|
17 lines
.key file
.bra {
.ket }
;Makeasm - An AmigaDOS shell script to call asz80, hex-bin and string85
;to generate a .85s file from a .asm file. The variable name is the same
;as the .asm file with the .asm removed
if exists {file}.asm
asz80 -h{file}.hex -l{file}.lst {file}.asm
hex-bin <{file}.hex >{file}.o
string85 {file}.o {file}
else
echo "File not found"
endif